projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9852642
)
(indent-or-fill-region): Use printable escapes instead of embedding literal
author
Karl Heuer
<kwzh@gnu.org>
Mon, 14 Mar 1994 21:26:50 +0000
(21:26 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Mon, 14 Mar 1994 21:26:50 +0000
(21:26 +0000)
control chars in the source.
lisp/emulation/edt.el
patch
|
blob
|
history
diff --git
a/lisp/emulation/edt.el
b/lisp/emulation/edt.el
index 8e186d45abd2db98db623489b81c49031c010ada..b6bc4071f8b7e6867debc0597bf36e2f408328a6 100644
(file)
--- a/
lisp/emulation/edt.el
+++ b/
lisp/emulation/edt.el
@@
-341,7
+341,7
@@
Accepts a prefix argument of the number of characters to invert."
(defun indent-or-fill-region ()
"Fill region in text modes, indent region in programming language modes."
(interactive)
- (if (string= paragraph-start "^$\\|^
\f
")
+ (if (string= paragraph-start "^$\\|^
\f
")
(indent-region (point) (mark) nil)
(fill-region (point) (mark))))